runtime.limiterEvent.stamp (field)

7 uses

	runtime (current package)
		mgclimit.go#L396: 	stamp atomic.Uint64 // Stores a limiterEventStamp.
		mgclimit.go#L410: 	if limiterEventStamp(e.stamp.Load()).typ() != limiterEventNone {
		mgclimit.go#L413: 	e.stamp.Store(uint64(makeLimiterEventStamp(typ, now)))
		mgclimit.go#L425: 		old := limiterEventStamp(e.stamp.Load())
		mgclimit.go#L439: 		if e.stamp.CompareAndSwap(uint64(old), uint64(new)) {
		mgclimit.go#L452: 		stamp = limiterEventStamp(e.stamp.Load())
		mgclimit.go#L457: 		if e.stamp.CompareAndSwap(uint64(stamp), uint64(limiterEventStampNone)) {